Command: TRACERT. (Trace TCP/IP Network address). Can be used in online, offline and secure.
Function: To view the path taken from the HSM to the specified address.
Inputs: tracert [-m] [-h maximum hops] [-w timeout] target
-m Use Management Ethernet port instead of Host port.
-h maximum hops Maximum number of hops to search for target.
-w timeout Timeout in milliseconds to wait for each reply.
Target IP address of target node, e.g. 193.240.101.54
Outputs: Text messages as shown in examples
Errors: Missing IP address.
Invalid IP address.
Invalid parameter.
Example 1 (view path taken to target node 216.239.59.99).
Online> tracert 216.239.59.99 <Return>
Tracing route to 216.239.59.99 over a maximum of 30 hops
1 1 ms <1 ms <1 ms 193.240.101.1
2 3 ms 3 ms 3 ms 193.240.100.3
3 35 ms 31 ms 33 ms 216.239.59.99
Trace complete.
Online>
Example 1 (view path taken to non-exisment target node 216.239.59.99).
Online> tracert 216.239.59.98 <Return>
Tracing route to 216.239.59.99 over a maximum of 30 hops
1 1 ms <1 ms <1 ms 193.240.101.1
2 3 ms 3 ms 3 ms 193.240.100.3
3 * * * Request timed out.
4 * * * Request timed out.
5 * * * Request timed out.
6 * * * Request timed out.
7 * * * Request timed out.
8 * * * Request timed out.
9 * * * Request timed out.
10 * * * Request timed out.
Trace complete.
Online>